body{
    background-color: #212121;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.title{
    display: flex;
    padding-top: 10vh;
    padding-bottom: 4vh;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: bold;
    margin-left: 10px ;
}

.container{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4%;
}

.result-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5%;
}

.move-icon{
    height: 50px;
}
.move-button {
    background-color: transparent;
    border: 3px solid white;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.result{
    font-size: 25px;
    font-weight: bold;
    margin-top: 30px;
}

.score{
    margin-top: 50px;
}

.reset-button{
    background-color: white;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
}

.choice-container{
    display: flex;
    gap: 30px;
    width: 400px;
    align-items: center;
    justify-content: center;
    /* align-content: center; */
}

.js-choice{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.js-choice span{
    font-size: 25px;
}